home *** CD-ROM | disk | FTP | other *** search
/ Champak 119 / (Vol 119) Nov 09 2010.iso / Games / the_samurai.swf / scripts / DefineButton2_99 / BUTTONCONDACTION on(release).as
Text File  |  2010-11-09  |  207b  |  15 lines

  1. on(release){
  2.    if(Pause)
  3.    {
  4.       menu.gotoAndStop(1);
  5.       Pause = false;
  6.       man.mc.play();
  7.    }
  8.    else
  9.    {
  10.       menu.gotoAndPlay(2);
  11.       Pause = true;
  12.       man.mc.stop();
  13.    }
  14. }
  15.